You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Standalone postgres database - for local runserver development.
# TODO: add this as a dependency of app/test/release
db:
image: postgres:15-alpine
environment:
POSTGRES_PASSWORD: postgres
ports:
- "5432:5432"
so question is whether that would be enough to stand up for GHA test use too?
I'm thinking how to best actually start off with a useful postgres state… as it at least needs running ./bin/fill-empty-postgres-database.sh that's not part of any bootstrap scripting yet.
Whether to reuse the same container, not rebuilding from scratch, not running a separate make command with separate docker build, and exposing separate env boilerplate… and just echoing the extra config and running it again now against the db service right after it? (Sounds ugly, but may conserve some resources.)
Description
We use both postgres and sqlite, depending on the environment/situation.
At the moment, our CI runs all tests against sqlite, but it would be good if we instead (or also) them in CI against postgres.
Success Criteria
The text was updated successfully, but these errors were encountered: